2025-06-13 14:09:36,479 [ 271536 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-06-13 14:09:36,479 [ 271536 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-06-13 14:09:36,479 [ 271536 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-06-13 14:09:36,479 [ 271536 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_ma94yb --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error -vvv " altinityinfra/integration-tests-runner:ad96270260ff '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [4 items] scheduling tests via LoadFileScheduling test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work test_git_import/test.py::test_git_import test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache [gw1] [ 25%] SKIPPED test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work [gw2] [ 50%] SKIPPED test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache [gw3] [ 75%] SKIPPED test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error [gw0] [100%] FAILED test_git_import/test.py::test_git_import =================================== FAILURES =================================== _______________________________ test_git_import ________________________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 def test_git_import(): repo = "https://github.com/githubtraining/hellogitworld.git" commit = "ef7bebf8bdb1919d947afe46ab4b2fb4278039b3" dir = "/tmp/hellogitworld" > clone_git_repository(repo, dir, commit=commit) test_git_import/test.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_git_import/test.py:32: in clone_git_repository node.exec_in_container(["bash", "-c", command]) helpers/cluster.py:4039: in exec_in_container return self.cluster.exec_in_container( helpers/cluster.py:2063: in exec_in_container result = subprocess_check_call( helpers/cluster.py:239: in subprocess_check_call return run_and_check(args, detach=detach, nothrow=nothrow, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'exec', 'roottestgitimport-gw0-node-1', 'bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworl.../githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com helpers/cluster.py:153: Exception ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-06-13 14:09:43 [ 649 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-06-13 14:09:43 [ 649 ] INFO : Running tests in /ClickHouse/tests/integration/test_git_import/test.py (cluster.py:2672, start) 2025-06-13 14:09:43 [ 649 ] DEBUG : Cluster start called. is_up=False (cluster.py:2679, start) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Cleanup called (cluster.py:846, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Unstopped containers: {} (cluster.py:860, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : No running containers for project: roottestgitimport-gw0 (cluster.py:874, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Trying to prune unused networks... (cluster.py:880, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Trying to prune unused images... (cluster.py:896, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Images pruned (cluster.py:899, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Trying to prune unused volumes... (cluster.py:905, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-06-13 14:09:43 [ 649 ] DEBUG : Volumes pruned: 1 (cluster.py:910, cleanup) 2025-06-13 14:09:43 [ 649 ] DEBUG : Setup directory for instance: node (cluster.py:2692, start) 2025-06-13 14:09:43 [ 649 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/configs/config.d (cluster.py:4649, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/database (cluster.py:4666, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs (cluster.py:4677, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4758, create_dir) 2025-06-13 14:09:43 [ 649 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw'} stored in /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env (cluster.py:96, _create_env_file) 2025-06-13 14:09:43 [ 649 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-06-13 14:09:43 [ 649 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-06-13 14:09:43 [ 649 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-06-13 14:09:43 [ 649 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-06-13 14:09:43 [ 649 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-06-13 14:09:43 [ 649 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-06-13 14:09:54 [ 649 ] DEBUG : Stderr: node Pulling (cluster.py:147, run_and_check) 2025-06-13 14:09:54 [ 649 ] DEBUG : Stderr: node Pulled (cluster.py:147, run_and_check) 2025-06-13 14:09:54 [ 649 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate') (cluster.py:3061, start) 2025-06-13 14:09:54 [ 649 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Creating (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Created (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Creating (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Created (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Starting (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Started (cluster.py:147, run_and_check) 2025-06-13 14:09:55 [ 649 ] DEBUG : ClickHouse instance created (cluster.py:3069, start) 2025-06-13 14:09:55 [ 649 ] DEBUG : get_instance_ip instance_name=node (cluster.py:1999, get_instance_ip) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2009, get_instance_global_ipv6) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : Waiting for ClickHouse start in node, ip: 172.16.2.2... (cluster.py:3077, start) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:55 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : http://localhost:None "GET /v1.46/containers/9e82348856e1a39136a80074da39d8d3f1f868f653b6eb8587d4027543f4f9ee/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-06-13 14:09:56 [ 649 ] DEBUG : ClickHouse node started (cluster.py:3081, start) ------------------------------ Captured log call ------------------------------- 2025-06-13 14:09:56 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:09:56 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:09:59 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:09:59 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:09:59 [ 649 ] WARNING : Attempt #1 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:00 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:00 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:02 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:02 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:02 [ 649 ] WARNING : Attempt #2 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:03 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:03 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:05 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:05 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:05 [ 649 ] WARNING : Attempt #3 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:06 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:06 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:08 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:08 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:08 [ 649 ] WARNING : Attempt #4 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:09 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:09 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:11 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:11 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:11 [ 649 ] WARNING : Attempt #5 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:12 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:12 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:14 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:14 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:14 [ 649 ] WARNING : Attempt #6 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:15 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:15 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:17 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:17 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:17 [ 649 ] WARNING : Attempt #7 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:18 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:18 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:20 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:20 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:20 [ 649 ] WARNING : Attempt #8 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:21 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:21 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:23 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:23 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:23 [ 649 ] WARNING : Attempt #9 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-06-13 14:10:24 [ 649 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2045, exec_in_container) 2025-06-13 14:10:24 [ 649 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-06-13 14:10:26 [ 649 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-06-13 14:10:26 [ 649 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-06-13 14:10:26 [ 649 ] WARNING : Attempt #10 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will stop (test.py:36, clone_git_repository) ---------------------------- Captured log teardown ----------------------------- 2025-06-13 14:10:27 [ 649 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Removing (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Removed (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Removing (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Removed (cluster.py:147, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Cleanup called (cluster.py:846, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-06-13 14:10:34 [ 649 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-06-13 14:10:34 [ 649 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-06-13 14:10:34 [ 649 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Unstopped containers: {} (cluster.py:860, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : No running containers for project: roottestgitimport-gw0 (cluster.py:874, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Trying to prune unused networks... (cluster.py:880, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Trying to prune unused images... (cluster.py:896, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Images pruned (cluster.py:899, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Trying to prune unused volumes... (cluster.py:905, cleanup) 2025-06-13 14:10:34 [ 649 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-06-13 14:10:34 [ 649 ] DEBUG : Volumes pruned: 1 (cluster.py:910, cleanup) ----------------- generated report log file: parallel1_1.jsonl ----------------- ============================== slowest durations =============================== 30.07s call test_git_import/test.py::test_git_import 21.52s teardown test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache 18.42s setup test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error 16.01s setup test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache 13.64s setup test_git_import/test.py::test_git_import 13.40s setup test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work 7.37s teardown test_git_import/test.py::test_git_import 4.22s teardown test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work 2.52s teardown test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error 0.37s call test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache 0.32s call test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work 0.32s call test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error =========================== short test summary info ============================ FAILED test_git_import/test.py::test_git_import - Exception: Command [docker ... SKIPPED [1] test_memory_profiler_min_max_borders/test.py:25: Disabled for sanitizers SKIPPED [1] test_merge_tree_check_part_with_cache/test.py:28: Skip with debug build and sanitizers. This test manually corrupts cache which triggers LOGICAL_ERROR and leads to crash with those builds SKIPPED [1] test_merge_tree_load_parts/test.py:228: Skip with debug build and sanitizers. This test intentionally triggers LOGICAL_ERROR which leads to crash with those builds ======================== 1 failed, 3 skipped in 53.47s ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_ma94yb --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import test_memory_profiler_min_max_borders/test.py::test_trace_boundaries_work test_merge_tree_check_part_with_cache/test.py::test_check_part_with_cache test_merge_tree_load_parts/test.py::test_merge_tree_load_parts_filesystem_error -vvv " altinityinfra/integration-tests-runner:ad96270260ff ' returned non-zero exit status 1.